Nevron Open Vision Documentation
Nevron.Nov Namespace / Function<TArg1,TArg2,TArg3> Delegate


In This Topic
    Function<TArg1,TArg2,TArg3> Delegate
    In This Topic
    Delegate for a void function that has three arguments of type TArg1, TArg2 and TArg3 respectively.
    Syntax
    'Declaration
     
    
    Public Delegate Sub Function
        (Of TArg1,TArg2,TArg3)( _
       ByVal arg1 As TArg1, _
       ByVal arg2 As TArg2, _
       ByVal arg3 As TArg3 _
    ) 
    'Usage
     
    
    Dim instance As New Function(Of TArg1,TArg2,TArg3)(AddressOf HandlerMethod)
    public delegate void Function<TArg1,TArg2,TArg3>( 
       TArg1 arg1,
       TArg2 arg2,
       TArg3 arg3
    )

    Parameters

    arg1
    arg2
    arg3

    Type Parameters

    TArg1
    TArg2
    TArg3
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also